Trac is being migrated to new services! Issues can be found in our new YouTrack instance and WIKI pages can be found on our website.

Changes between Version 167 and Version 168 of Using Pidgin


Ignore:
Timestamp:
Jul 5, 2009, 3:53:03 PM (15 years ago)
Author:
loser
Comment:

improved portable upgrade script

Legend:

Unmodified
Added
Removed
Modified
  • Using Pidgin

    v167 v168  
    246246
    247247=== Can I make Pidgin transparent/translucent? ===
     248
     249
     250
     251
    248252'''Windows:'''[[BR]]
    249253You can make Pidgin translucent in most versions of Windows using the "Transparency" plugin that ships with Pidgin for Windows.  A user has also recommended the freeware Windows utility, [http://www.abstractpath.com/powermenu/ PowerMenu] which can to make any window translucent.
     
    426430The following batch script takes care of removing unneeded Pidgin files as described above.
    427431
    428 '''Do not use this unless you understand what it is doing!'''
    429 {{{
    430 REM download: http://sourceforge.net/project/downloading.php?group_id=235&filename=pidgin-<version>-win32-bin.zip
    431 
    432 cd pidgin-<version>-win32-bin
    433 
    434 REM remove unused modules
    435 rmdir /S /Q perlmod
    436 del plugins\perl.dll plugins\tcl.dll
    437 
    438 REM keep only relevant locale (here: DE)
    439 move locale\de %TEMP%
    440 rmdir /S /Q locale
    441 mkdir locale
    442 move %TEMP%\de locale
    443 
    444 REM disable spell-checking
    445 del libgtkspell.dll
    446 
    447 REM activate portable mode
    448 move pidgin.exe pidgin-portable.exe
     432'''Do not use this unless you understand what it is doing! '''
     433{{{
     434: preparation: download http://sourceforge.net/project/downloading.php?group_id=235&filename=pidgin-<version>-win32-bin.zip
     435
     436set TMPDIR=tmp_%RANDOM%_%RANDOM%
     437cd pidgin-*-win32bin && ^
     438echo remove unused modules && ^
     439rmdir /S /Q perlmod && ^
     440del plugins\perl.dll plugins\tcl.dll && ^
     441echo keep only relevant locale (here: DE) && ^
     442set TMPDIR=tmp_%RANDOM%_%RANDOM% && ^
     443mkdir %TMPDIR% && ^
     444move locale\de %TMPDIR% && ^
     445rmdir /S /Q locale && ^
     446mkdir locale && ^
     447move %TMPDIR%\de locale && ^
     448echo disable spell-checking && ^
     449del libgtkspell.dll && ^
     450echo activate portable mode && ^
     451move pidgin.exe pidgin-portable.exe && ^
     452echo SUCCESS || ^
     453echo ERROR
     454
     455PAUSE
    449456}}}
    450457
All information, including names and email addresses, entered onto this website or sent to mailing lists affiliated with this website will be public. Do not post confidential information, especially passwords!